home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / xvier.tar / xvier / xvier-1.0 / Imakefile next >
Makefile  |  1992-07-28  |  939b  |  31 lines

  1. # I've seen window managers which couldn't handle aspect ratio hints.
  2. # Uncomment if you have resize problems.
  3. #XVIER_ASPECT    = -DXVIER_WM_ASPECT_BUG
  4.  
  5. # Some systems don't provide FD_SET #define's. HP 9000 and IBM RS6000
  6. # are handled in xvier.h, but on other systems you can uncomment this.
  7. #NO_FD_SET = -DNO_FD_SET
  8.  
  9. # If "select" is missing, but you have "poll", try this:
  10. #NO_SELECT = -DNO_SELECT
  11.  
  12. # And if "getdtablesize" is missing, use the following:
  13. #NO_GETDTABSIZE = -DNO_GETDTABSIZE
  14.  
  15. #PROGNAME    = $(LIBDIR)$(PATHSEP)xvier_prog
  16. PROGNAME    = /usr/games/lib/xvier_prog
  17. DEFINES        = $(XVIER_ASPECT) $(NO_FD_SET) $(NO_SELECT) \
  18.             $(NO_GETDTABSIZE) -DPROGNAME=\"$(PROGNAME)\"
  19.  
  20. PROGRAMS    = xvier xvier_prog
  21.  
  22. SRCS1        = xvier.c
  23. OBJS1        = xvier.o
  24. SRCS2        = vierinit.c vier.c
  25. OBJS2        = vierinit.o vier.o
  26.  
  27. ComplexProgramTarget_1(xvier, $(XLIB), /**/)
  28. NormalProgramTarget(xvier_prog, $(OBJS2), /**/, /**/, /**/)
  29.  
  30. InstallProgram(xvier_prog, $(PROGNAME))
  31.